Add doc stubs
authorMatthias Clasen <mclasen@redhat.com>
Fri, 3 Jul 2009 19:17:26 +0000 (15:17 -0400)
committerMatthias Clasen <mclasen@redhat.com>
Fri, 3 Jul 2009 19:22:02 +0000 (15:22 -0400)
gdk/gdkoffscreenwindow.c
gdk/gdkwindow.c

index 438cc0c1a7df983fbeffaf43ecb6aa66a5bc4bd3..03d8fe04f2c42489f1595913d3231f6668569205 100644 (file)
@@ -832,12 +832,12 @@ gdk_offscreen_window_get_pointer (GdkWindow       *window,
  * gdk_offscreen_window_get_pixmap:
  * @window: a #GdkWindow
  *
- * Gets the offscreen pixmap that an offscreen window renders into. If
- * you need to keep this around over window resizes, you need to add a
- * reference to it.
+ * Gets the offscreen pixmap that an offscreen window renders into.
+ * If you need to keep this around over window resizes, you need to
+ * add a reference to it.
  *
- * Returns: The offscreen pixmap, or NULL if not offscreen
- **/
+ * Returns: The offscreen pixmap, or %NULL if not offscreen
+ */
 GdkPixmap *
 gdk_offscreen_window_get_pixmap (GdkWindow *window)
 {
@@ -1155,6 +1155,13 @@ gdk_offscreen_window_queue_translation (GdkWindow *window,
 {
 }
 
+/**
+ * gdk_offscreen_window_set_embedder:
+ * @window: a #GdkWindow
+ * @embedder: the #GdkWindow that @window gets embedded in
+ *
+ * Since: 2.18
+ */
 void
 gdk_offscreen_window_set_embedder (GdkWindow     *window,
                                   GdkWindow     *embedder)
@@ -1184,6 +1191,17 @@ gdk_offscreen_window_set_embedder (GdkWindow     *window,
   offscreen->embedder = embedder;
 }
 
+/**
+ * gdk_offscreen_window_get_embedder:
+ * @window: a #GdkWindow
+ *
+ * Gets the window that @window is embedded in.
+ *
+ * Returns: the embedding #GdkWindow, or %NULL if @window is not an
+ *     embedded offscreen window
+ *
+ * Since: 2.18
+ */
 GdkWindow *
 gdk_offscreen_window_get_embedder (GdkWindow *window)
 {
index cda7e83207794098cc8238167fe3cc2a6258b846..7599f20894c27f8358bba0ce94ec5037405feffe 100644 (file)
@@ -1469,7 +1469,7 @@ gdk_window_reparent (GdkWindow *window,
  * Returns: %TRUE if the window has a native window, %FALSE otherwise
  *
  * Since: 2.18
- **/
+ */
 gboolean
 gdk_window_ensure_native (GdkWindow *window)
 {
@@ -8729,6 +8729,12 @@ gdk_pointer_grab (GdkWindow *      window,
   return res;
 }
 
+/**
+ * gdk_window_geometry_changed:
+ * @window: a #GdkWindow
+ *
+ * Since: 2.18
+ */
 void
 gdk_window_geometry_changed (GdkWindow *window)
 {